home *** CD-ROM | disk | FTP | other *** search
/ El Mac 8 / El Mac 8.iso / Shareware / Demos / OpenStack™ (Demo US) / OpenStack™ Demo / Objects Library (Demo) / 3D Button / OpenStack button / OpenStack button.rsrc / HSCR_12800 < prev    next >
Encoding:
Text File  |  1995-10-23  |  510 b   |  31 lines

  1. on mouseLeave
  2.   set the icon of me to 15018
  3. end mouseLeave
  4.  
  5. on mouseDoubleClick
  6.   set the icon of me to 15019
  7.   set the icon of me to 15018
  8.   doIt
  9. end mouseDoubleClick
  10.  
  11. on mouseDown
  12.   set the icon of me to 15019
  13.   play clicky
  14. end mouseDown
  15.  
  16. on mouseStillDown
  17.   if the mouseLoc is within the rect of me then
  18.     set the icon of me to 15019
  19.   else  set the icon of me to 15018
  20. end mouseStillDown
  21.  
  22. on mouseUp
  23.   set the icon of me to 15018
  24.   doIt
  25. end mouseUp
  26.  
  27. on doIt
  28.   visual effect zoom open
  29.   go home
  30. end doIt